home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 03-04.BAS < prev    next >
BASIC Source File  |  1991-06-05  |  336b  |  26 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. NewMode = FGbestmode(80,25,1)
  7.  
  8. IF NewMode < 0 THEN
  9.    PRINT "This program requires ";
  10.    PRINT "an 80-column display."
  11.    STOP
  12. END IF
  13.  
  14. FGsetmode NewMode
  15. FGcursor 0
  16.  
  17. FGsetcolor 15
  18. FGtext "Hello, world.", 13
  19.  
  20. FGwaitkey
  21.  
  22. FGsetmode OldMode
  23. FGreset
  24.  
  25. END
  26.